home *** CD-ROM | disk | FTP | other *** search
- #ifndef _TFLOATER_
- #define _TFLOATER_
-
- #include <TextServices.h>
-
- #define kfltGestalt 'tFlt'
-
- // created & initialized by INIT, allows for communication between INIT, BOA and clients
- typedef struct flt_GlobalCommRec {
- ProcessSerialNumber daemonPSN; // PSN of daemon, valid only if daemon is running, can be compared to kNoProcess
- WindowPtr daemonWindow; // nil if daemon not running
- THz daemonZone; // memory zone of daemon
- QDGlobals *daemonQDGlobals; // pointer to the QD globals of the daemon
- Boolean daemonCloseWindow; // tells daemon that it should quit because user closed window
- } flt_GlobalCommRec, *flt_GlobalCommPtr, **flt_GlobalCommHandle;
-
- #endif // _TFLOATER_